delete files from a folder with exception python

32

delete files from a folder with exception python -

import os

filelist = [ f for f in os.listdir(mydir) if f.endswith(".bak") ]
for f in filelist:
    os.remove(os.path.join(mydir, f))

Comments

Submit
0 Comments